home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 432 b | 25 lines |
- #!smake
- #
-
- include $(ROOT)/usr/include/make/commondefs
-
- TARGETS = demo
-
- LCDEFS = -DUSE_SEMAPHORES
- #LCDEFS = -DDEBUG_SP
- LCOPTS = -g
- LLDLIBS = -laudio -laudiofile -laudioutil -lm
- CFILES = playEngine.c demo.c
-
- IM_ROOT != if { [ `whoami` = root ];} then { echo true;} fi
-
- default all: $(TARGETS)
- #if $(IM_ROOT) == "true"
- chmod u+s $(TARGETS)
- #endif
-
- include $(COMMONRULES)
-
- $(TARGETS): $(OBJECTS)
- $(CCF) -o $@ $(OBJECTS) $(LDFLAGS)
-